home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / lynxlib.zoo / s / windnew.c < prev   
Encoding:
C/C++ Source or Header  |  1990-02-18  |  303 b   |  16 lines

  1. /* Binding for the wind_new() command documented in the */
  2. /* Rainbow TOS Release Notes */
  3.  
  4. extern int control[];
  5. extern char ctrl_cnts[115][3];
  6.  
  7. #define WIND_NEW 109
  8.  
  9. wind_new()
  10. {
  11. register char *c;
  12.     c = &(ctrl_cnts[WIND_NEW-10][0]);
  13.     c[0] = c[1] = c[2] = c[3] = 0;
  14.     crys_if(WIND_NEW);
  15. }
  16.